home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
pmode
/
qfml11
/
newtypes.h
< prev
next >
Wrap
C/C++ Source or Header
|
1994-03-22
|
591b
|
18 lines
/****************************************************************************
* *
* Definición de algunos tipos para hacer teclear menos. *
* También esta la macro para usar etiquetas en inline en C. *
* *
* *
****************************************************************************/
#ifndef __NEWTYPES_H
#define __NEWTYPES_H
#define WORD unsigned int
#define LWORD unsigned long
#define BYTE unsigned char
#define POINTER *unsigned char
#define Z(x) }x:asm{ //Macro para usar labels en asm's
#endif